home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / GraKa / VLRecNG / Install < prev    next >
Text File  |  2000-01-08  |  3KB  |  72 lines

  1. ; Innovative VLRec NG Installation utility
  2. ; (C) 2000 by Felix Schwarz/Innovative
  3. ; $VER: 4.0
  4.  
  5. (if (= @language "deutsch")
  6.         (
  7.                 ; ----------------------------
  8.                 ; Let`s use German as language
  9.                 ; ----------------------------
  10.                 (set #welcome "\n\n\n\nVLRec NG 4.0\n©1997-2000 by Felix Schwarz\n\n\nWillkommen zur VLRec NG Installation\nDieses Script wird VLRec NG auf Ihre HD installieren\n")
  11.                 (set #askinstall "Wohin soll VLRec NG installiert werden. (Es wird ein Verzeichnis erstellt)")
  12.                 (set #copylibs "Überprüfe und kopiere benötigte Libraries..")
  13.                 (set #copyfxpaint "Kopiere VLRec NG-Dateien..")
  14.                 (set #byebye "\n\n\n\n\n\n\nVLRec NG ist nun auf Ihrer Festplatte installiert.")
  15.         )
  16.         (
  17.                 ; -----------------------------
  18.                 ; Let`s use English as language
  19.                 ; -----------------------------
  20.                 (set #welcome "\n\n\n\nVLRec NG 4.0\n©1997-2000 by Felix Schwarz\n\n\nWelcome to the VLRec NG installation\nThis script will install VLRec NG on your HD\n")
  21.                 (set #askinstall "Where shall VLRec NG be installed. (A directory will be created)")
  22.                 (set #copylibs "Checking and installing required libraries..")
  23.                 (set #copyfxpaint "Copying VLRec NG-files..")
  24.                 (set #byebye "\n\n\n\n\n\nVLRec NG is now installed on your HD.")
  25.         )
  26. )
  27.  
  28. ; --------------------------------------
  29. ; Ok, let`s begin with a small greeting!
  30. ; --------------------------------------
  31.  
  32. (message #welcome)
  33.  
  34. (welcome)
  35.  
  36. ; --------------------------------------
  37. ; Set destination-directory for VLRec NG
  38. ; --------------------------------------
  39. (set #installdir
  40.         (askdir
  41.                 (prompt #askinstall)
  42.                 (help @askdir-help)
  43.                 (default @default-dest)
  44.         )
  45. )
  46.  
  47. ; ----------------
  48. ; Copy basic files
  49. ; ----------------
  50. (copyfiles
  51.     (source "Inst/")
  52.     (dest #installdir)
  53.     (pattern "#?")
  54. )
  55.  
  56. ; --------------
  57. ; Copy libraries
  58. ; --------------
  59. (working #copylibs)
  60. (run "copylib Inst/VLRec_NG/Libs/fxWARP.library LIBS:fxWARP.library")
  61. (run "copylib Inst/VLRec_NG/Libs/vlab.library LIBS:vlab.library")
  62. (run "copylib Inst/VLRec_NG/Libs/iff.library LIBS:iff.library")
  63. (makedir "Libs:VHI")
  64. (run "copylib Inst/VLRec_NG/VHI/vlab.vhi LIBS:VHI/vlab.vhi")
  65. (run "copylib Inst/VLRec_NG/VHI/mvd819.vhi LIBS:VHI/mvd819.vhi")
  66.  
  67. ; -------------------------
  68. ; Say Bye-Bye and Thank-You
  69. ; -------------------------
  70.  
  71. (message #byebye)
  72.